home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2006 May / PCpro_2006_05.ISO / files / mobile / fma-2.0-stable-setup.exe / {app} / source / uActivityLog.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2004-06-08  |  717 b   |  41 lines

  1. unit uActivityLog;
  2.  
  3. {
  4. *******************************************************************************
  5. * Descriptions: Activity log window implementation
  6. * $Source: /cvsroot/fma/fma/uActivityLog.pas,v $
  7. * $Locker:  $
  8. *
  9. * Todo:
  10. *
  11. * Change Log:
  12. * $Log: uActivityLog.pas,v $
  13. * Revision 1.1  2004/06/08 06:15:47  z_stoichev
  14. * Initial checkin.
  15. *
  16. *
  17. }
  18.  
  19. interface
  20.  
  21. uses
  22.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  23.   Dialogs, uDebug, Placemnt, StdCtrls;
  24.  
  25. type
  26.   TfrmActivityLog = class(TfrmDebug)
  27.   private
  28.     { Private declarations }
  29.   public
  30.     { Public declarations }
  31.   end;
  32.  
  33. var
  34.   frmActivityLog: TfrmActivityLog;
  35.  
  36. implementation
  37.  
  38. {$R *.dfm}
  39.  
  40. end.
  41.